Public Member Functions | |
IntegerWrapper () | |
void | write (int integer) |
int | read () |
Package Attributes | |
int | data |
Static Private Attributes | |
static final long | serialVersionUID = 8539325281848284218L |
Definition at line 6 of file IntegerWrapper.java.
counter.IntegerWrapper.IntegerWrapper | ( | ) |
Definition at line 10 of file IntegerWrapper.java.
References counter.IntegerWrapper.data.
00010 { 00011 data = 0; 00012 }
void counter.IntegerWrapper.write | ( | int | integer | ) |
Definition at line 14 of file IntegerWrapper.java.
References counter.IntegerWrapper.data.
00014 { 00015 data = integer; 00016 }
int counter.IntegerWrapper.read | ( | ) |
Definition at line 18 of file IntegerWrapper.java.
References counter.IntegerWrapper.data.
00018 { 00019 return data; 00020 }
final long counter.IntegerWrapper.serialVersionUID = 8539325281848284218L [static, private] |
Definition at line 7 of file IntegerWrapper.java.
int counter.IntegerWrapper.data [package] |
Definition at line 8 of file IntegerWrapper.java.
Referenced by counter.IntegerWrapper.IntegerWrapper(), counter.IntegerWrapper.read(), and counter.IntegerWrapper.write().